home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d18
/
totdem.arc
/
DEMMS4.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-10
|
542b
|
26 lines
program DemoMessageFour;
{demms4 - two strip-buttons}
Uses DOS, CRT,
totFAST, totMSG, totIO1;
Var
MsgWin : PromptOBJ;
ActionCode: tAction;
begin
Screen.Clear(white,'░'); {paint the screen}
with MsgWin do
begin
Init(1,' Message ');
AddLine('');
AddLine('The message unit provides a');
AddLine('very easy way of displaying');
AddLine('pop-up messages in a move-');
AddLine('able window.');
AddLine('');
ActionCode := Show;
Done;
end;
end.